home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / FPSE_src / include / gpu.h < prev    next >
C/C++ Source or Header  |  2000-01-01  |  487b  |  27 lines

  1. #ifndef _GPU_H_
  2. #define _GPU_H_
  3.  
  4. // Starting functions
  5. int  GPU_Open(UINT32 *gpu);
  6. void GPU_Close(void);
  7.  
  8. // I/O GPU ports
  9. UINT32 GP0_Read(void);
  10. UINT32 GP1_Read(void);
  11. void   GP0_Write(UINT32 data);
  12. void   GP1_Write(UINT32 code);
  13.  
  14. // Refresh function
  15. void GPU_Update(void);
  16.  
  17. // Dma function
  18. void GPU_DmaExec(UINT32 adr,UINT32 bcr,UINT32 chcr);
  19.  
  20. // ScreenShot
  21. void GPU_ScreenShot(char *path);
  22.  
  23. // High level functions
  24. int  GPU_Configure(UINT32 *par);
  25. void GPU_About(UINT32 *par);
  26.  
  27. #endif